home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / ColorSync 2.5.1 SDK / Sample Code / CSDemo 2.5 / ShellSources / qdUtils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-09  |  887 b   |  37 lines  |  [TEXT/CWIE]

  1.  
  2.  
  3. #ifndef _QDUTILS_
  4. #define _QDUTILS_
  5.  
  6.  
  7. #ifndef __TYPES__
  8. #include <Types.h>
  9. #endif
  10.  
  11. #ifndef __FILES__
  12. #include <Files.h>
  13. #endif
  14.  
  15. #ifndef __QUICKDRAW__
  16. #include <QuickDraw.h>
  17. #endif
  18.  
  19. #ifndef __QDOFFSCREEN__
  20. #include <QDOffscreen.h>
  21. #endif
  22.  
  23.  
  24. /**\
  25. |**| ==============================================================================
  26. |**| PUBLIC FUNCTION PROTOTYPES
  27. |**| ==============================================================================
  28. \**/
  29. OSErr        DoReadPICT                        ( FSSpec spec, PicHandle *pict ) ;
  30. OSErr        DoWritePICT                        ( FSSpec spec, PicHandle pict, OSType creator ) ;
  31. QDErr        NewSmallGWorld                    ( GWorldPtr *offscreen ) ;
  32. QDErr        NewGWorldClear                    ( GWorldPtr *offscreen, short depth, const Rect *rect,
  33.                                               CTabHandle cTable, GDHandle aGDevice, GWorldFlags flags ) ;
  34. OSErr        DrawPicHandleUsingBottlenecks    ( PicHandle pict, CQDProcs procs, CGrafPtr port ) ;
  35.  
  36.  
  37. #endif